home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir24 / g1emmnos.zip / PUB / KA9Q / NOSBPQ.EXE / README.NOS < prev   
Text File  |  1990-06-03  |  3KB  |  101 lines

  1.                       NOS/BPQ Link - NODEDRV.COM
  2.  
  3.  
  4. I have now produces a 'Packet Driver' to allow NOS to communicate with
  5. the switch. It uses the KISS mode application interface (See KISSMODE.DOC
  6. for details). One copy of the packet driver is needed for each radio
  7. port to be used by NOS, plus one for the loopback port if you want NOS
  8. to be able to talk to the switch. Experience with the system is rather
  9. limited, but I suggest that if you are using TCP/IP over NETROM that
  10. you use the lookback port, and let the switch handle all the radio links. 
  11. Only if you are using IP in datagram or ax.25 virtual circuit mode will 
  12. you need to give NOS direct access to the radio ports.
  13.  
  14. Please note that you need at least version 3.57 of BPQCODE.EXE
  15.  
  16. The following is an extract from my system. You will need to tailor
  17. it to your own requirements.
  18.  
  19.  
  20. NODEDRV must be loaded in the same window as NOS - if you put it
  21. under desqview the system will probably crash. It takes two parameters,
  22. the software interrupt number used by NOS to communicate with it (in
  23. the range 60-7f hex), and the virtual COM port used to talk to the
  24. switch. 
  25.  
  26.  
  27. STARTNOS.BAT
  28.  
  29.  
  30. nodedrv 0x61 10    
  31. nodedrv 0x62 11
  32. nodedrv 0x63 12
  33. nos
  34.  
  35.  
  36.  
  37. This is the relevent TNCPORT bit of BPQCFG.TXT. I have two radio ports
  38. (Port 1 on 2m, and port 2 on 70 cms). Port 3 is the loopback port.
  39.  
  40.  
  41. TNCPORT
  42.     COM=10
  43.     TYPE=KISS
  44.     KISSMASK=4        ; PORT 3 (100B) - Loopback port
  45. ENDPORT
  46.  
  47. TNCPORT
  48.     COM=11
  49.     TYPE=KISS
  50.     KISSMASK=2        ; PORT 2 (10B) - 70cms
  51. ENDPORT
  52.  
  53. TNCPORT
  54.     COM=12
  55.     TYPE=KISS
  56.     KISSMASK=1        ; PORT 1 (1B) - 2m
  57. ENDPORT
  58.  
  59.  
  60. This is the 'attach' bit of AUTOEXEC.NET. I'm not sure about the need to
  61. set the MTU after the attach, but it seemed to work better with it.
  62.  
  63.  
  64. #
  65. attach packet 61 node 236
  66. attach packet 62 ax2 256
  67. attach packet 63 ax1 256
  68. #
  69. #    MYCALL doesnt seem to be applied to packet driver interfaces, so
  70. #        set up a callsign (or it sends garbage)
  71. #
  72. if node link g8bpq-5
  73. if ax1 link g8bpq-5
  74. if ax2 link g8bpq-5
  75. #
  76. #    The MTU on the Attach seems to be ignored - so lets make sure
  77. #        it gets set to something reasonable
  78. #
  79. if node mtu 235
  80. if ax1 mtu 256
  81. if ax2 mtu 256
  82. #
  83.  
  84.  
  85.  
  86. This is a new facility, and there is very little local IP activity for
  87. me to try it with. Any feeback would be most welcome, both on problems
  88. and suggestions on how best to set up the system.
  89.  
  90.  
  91. 73
  92.  
  93. Johε Wiseman¼ G8BPQ
  94. 76, Haywood Road,
  95. Mapperley,
  96. Nottingham.
  97. NG3 6AE
  98.  
  99. 3rd June, 1900
  100.  
  101.